home *** CD-ROM | disk | FTP | other *** search
/ HAKERIS 11 / HAKERIS 11.ISO / linux / system / LinuxConsole 0.4 / linuxconsole0.4install-en.iso / opt0.4.lcm / bin / hsfstop < prev    next >
Encoding:
Text File  |  2004-02-26  |  601 b   |  19 lines

  1. #!/bin/sh
  2. #
  3. # Copyright (c) 2003 Linuxant inc.
  4. #
  5. # NOTE: The use and distribution of this software is governed by the terms in
  6. # the file LICENSE, which is included in the package. You must read this and
  7. # agree to these terms before using or distributing this software.
  8. # This script tries to unload all hsf-related modules present in the system
  9. #
  10. PATH=/usr/sbin:/sbin:/usr/bin:/bin:/usr/local/sbin:/usr/local/bin
  11. export PATH
  12.  
  13. for mod in hsfpcibasic2 hsfmc97ich hsfmc97via hsfmc97ali hsfsoar hsfserial hsfengine hsfosspec; do
  14.     if lsmod | grep -q "^${mod} "; then
  15.         rmmod ${mod} || exit 1
  16.     fi
  17. done
  18.